home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / ccs_util.jar / regex / NList.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-12-09  |  630 b   |  28 lines

  1. package regex;
  2.  
  3. class NList {
  4.    private Chars chars;
  5.    // $FF: renamed from: to int
  6.    private int field_0;
  7.    private NList next;
  8.  
  9.    // $FF: renamed from: to () int
  10.    public int method_0() {
  11.       return this.field_0;
  12.    }
  13.  
  14.    NList(Chars var1, int var2, NList var3) {
  15.       this.chars = var1;
  16.       this.field_0 = var2;
  17.       this.next = var3;
  18.    }
  19.  
  20.    public NList next() {
  21.       return this.next;
  22.    }
  23.  
  24.    public Chars chars() {
  25.       return this.chars;
  26.    }
  27. }
  28.